Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/

README.md /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/README.md
279 Views
0 Comments
# Typer

## A simple interesting typing game which can help to increase the typing speed.

* Characters can be case sensitive or
canvas.js /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/canvas.js
238 Views
0 Comments
/* global performance FPSMeter */
/* eslint-disable no-unused-vars */
const canvas = document.getElementById('canvas');
const ct
index.html /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/index.html
397 Views
0 Comments
<!DOCTYPE html>

<head>
<meta charset="UTF-8">
<title>Typer</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1
particle.js /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/particle.js
239 Views
0 Comments
/* global canvas paintCircle generateRandomNumber generateRandomRgbColor */
/* eslint-disable no-unused-vars */
const particle =
typer.css /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/typer.css
188 Views
0 Comments
* {
margin: 0;
}

canvas {
background: #f10505a5;
display: block;
}
typer.js /cody/swapnilsparsh/30DaysOfJavaScript/93 - Typer/typer.js
259 Views
0 Comments
/* global canvas ctx animation:writable gameLoop label loop paintCircle isIntersectingRectangleWithCircle generateRandomNumber g